home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mgr / mgr.zoo / mgrdif2.zoo / mincl < prev   
Encoding:
Text File  |  1991-03-21  |  1.0 KB  |  46 lines

  1. #                        Copyright (c) 1987 Bellcore
  2. #                            All Rights Reserved
  3. #       Permission is granted to copy or use this program, EXCEPT that it
  4. #       may not be sold for profit, the copyright notice must be reproduced
  5. #       on copies, and credit should be given to Bellcore where it is due.
  6. #       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  7.  
  8. #    $Header: Makefile,v 4.5 88/08/29 13:38:23 sau Exp $
  9. #    $Source: /tmp/mgrsrc/lib/RCS/Makefile,v $
  10.  
  11.  
  12.  
  13. PORTCFILES = ckmgrterm.c term.c text.c sfont.c sin.c
  14. CFILES = $(PORTCFILES) scribe.c
  15. OFILES = ckmgrterm.o term.o text.o sfont.o scribe.o sin.o
  16. HFILES = window.h term.h restart.h dump.h
  17.  
  18. all: $(ALL)
  19. all020: $(ALL020)
  20.  
  21. $(MGRLIB): $(OFILES)
  22.     rm -f $@
  23.     $(AR) rsv $@ $^
  24.  
  25. $(MGRLIB020): $(OFILES)
  26.     rm -f $@
  27.     $(AR) rsv $@ $^
  28.  
  29. term.o:        term.h window.h restart.h
  30.  
  31. text.o:        term.h window.h
  32.  
  33. clean:    
  34.         rm -f *.o
  35.  
  36. realclean: clean
  37.         rm -f $(ALL) $(ALL020) core report
  38.  
  39. clobber: realclean
  40.  
  41. install: $(ALL)
  42.     cp $(ALL) $(LIB)
  43.  
  44. install020: $(ALL020)
  45.     cp $(ALL020) $(LIB)
  46.